home *** CD-ROM | disk | FTP | other *** search
/ Aminet 16 / Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso / Aminet / util / sys / Make060.lha / Make060 / Make060.c < prev    next >
C/C++ Source or Header  |  1996-10-30  |  489b  |  30 lines

  1. /*
  2. **      $VER: Make060 1.0 (30.10.96)
  3. **
  4. **      Sets AFF_68060 in ExecBase, it your accelerator soft didn't...
  5. **
  6. **      (C) Copyright 1996 Andreas R. Kleinert
  7. **      All Rights Reserved.
  8. */
  9.  
  10. #include <exec/types.h>
  11. #include <exec/execbase.h>
  12.  
  13. #include <proto/exec.h>
  14.  
  15. #include <68060.h>
  16.  
  17. #include <stdlib.h>
  18.  
  19.  
  20. char ver_text [] = "\0$VER: Make060 V1.0 (30.10.96)";
  21.  
  22. void main(long argc, char **argv)
  23. {
  24.  extern struct ExecBase *SysBase;
  25.  
  26.  SysBase->AttnFlags |= AFF_68060;
  27.  
  28.  exit(0);
  29. }
  30.